home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / Documents / JAVA Programming / examples / 04 / Promote.java < prev    next >
Encoding:
Text File  |  2000-09-08  |  321 b   |  13 lines

  1. class Promote {
  2. public static void main (String args [])    {     byte b = 42;
  3.    char c = 'a';
  4. short s = 1024;
  5. int i = 50000;
  6. float f = 5.67F;
  7. double d =.1234;
  8. double result = (f* b) + (i/ c) - (d* s);
  9. System. out. println ((f* b)+ "+ "+ (i / c)+ " - "     + (d* s));
  10. System. out. println ("result = "+ result);
  11. }
  12.